home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / tegl6b.zip / INTROPAK.EXE / lha / TWHELLO.PAS < prev    next >
Pascal/Delphi Source File  |  1991-04-06  |  392b  |  14 lines

  1. {-- simplest program using high level windows }
  2.  
  3. USES teglmain, twcommon, twkernel;
  4. VAR
  5.    wf : WinFramePtr;
  6. BEGIN
  7.   twEasyStart;    {-- simple startup }
  8.  
  9.   twInit(wf,100,100,400,250);         {-- creates & initializes }
  10.   twSetHeader(wf,'Hello World');      {-- set up individual items }
  11.   twDrawWindowFrame(wf);              {-- draw it the first time }
  12.  
  13.   TeglSupervisor;
  14. END.